home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / ftp4w24b.zip / sample / cw.rc < prev    next >
Text File  |  1995-11-16  |  4KB  |  113 lines

  1.  
  2. #define APSTUDIO_READONLY_SYMBOLS
  3. /////////////////////////////////////////////////////////////////////////
  4. //
  5. // Generated from the TEXTINCLUDE 2 resource.
  6. //
  7. #include "resource.h"
  8. #include "afxres.h"
  9.  
  10.  
  11. //////////////////////////////////////////////////////////////////////////////
  12. //
  13. // Menu
  14. //
  15.  
  16. CW_MAIN MENU DISCARDABLE 
  17. BEGIN
  18.     POPUP    "&Connect"
  19.     BEGIN  
  20.         MENUITEM "&Connect",                    CW_CONNECT
  21.         MENUITEM "&Disconnect",                 CW_DISCONNECT
  22.         MENUITEM SEPARATOR
  23.         MENUITEM "&Quit",                       CW_QUIT
  24.         MENUITEM "&About DLL"                   CW_ABOUT
  25.     END
  26.  
  27.     POPUP    "&File Transfer"
  28.     BEGIN   
  29.         MENUITEM "&Recv",                       CW_RECV
  30.         MENUITEM "&Send",                       CW_SEND
  31.         MENUITEM SEPARATOR
  32.         MENUITEM "&Append To Remote"            CW_APPEND
  33.         MENUITEM "Append To &Local"             CW_RCVAPPEND
  34.         MENUITEM SEPARATOR
  35.         MENUITEM "Recv From 100th byte"         CW_RCVRESTART
  36.     END
  37.  
  38.     POPUP    "&Dir"
  39.     BEGIN
  40.         MENUITEM "&Long Dir (use file)",        CW_LONGDIR
  41.         MENUITEM "&Short Dir (use file)",       CW_SHORTDIR
  42.         MENUITEM SEPARATOR
  43.         MENUITEM "L&ong Dir (line per line)",   CW_LONGDIR_LL
  44.         MENUITEM "S&hort Dir (line per line)",  CW_SHORTDIR_LL
  45.     END
  46.  
  47.     POPUP "&Misc"
  48.     BEGIN
  49.         MENUITEM "&Change Dir",                 CW_CWD
  50.         MENUITEM "P&arent Dir",                 CW_CDUP
  51.         MENUITEM "&Make Dir",                   CW_MKD
  52.         MENUITEM "&Remove Dir",                 CW_RMD
  53.         MENUITEM "&Print Dir",                  CW_PWD
  54.         MENUITEM SEPARATOR
  55.         MENUITEM "&Delete Remote file",         CW_DELETE
  56.         MENUITEM "R&ename Remote file",         CW_RENAME
  57.         MENUITEM SEPARATOR
  58.         MENUITEM "&Flush",                      CW_FLUSH
  59.         MENUITEM "S&yst",                       CW_SYST
  60.         MENUITEM "&Quote",                      CW_QUOTE
  61.     END
  62.     POPUP "&Options"
  63.     BEGIN
  64.         MENUITEM "&Verbose Mode",               CW_SETVERB
  65.         MENUITEM "&Synchronous",                CW_SYNC
  66.         MENUITEM "Type &Bin",                   CW_BINARY
  67.         MENUITEM "&Passive Mode",               CW_PASSIVE
  68.         MENUITEM "&Gauge",                      CW_GAUGE
  69.         MENUITEM SEPARATOR
  70.         MENUITEM "&Edit INI",                   CW_EDITINI
  71.         MENUITEM SEPARATOR
  72.         MENUITEM "&Log To C:\\Ftp4w.Log",        CW_LOG
  73.     END
  74.     MENUITEM "&Abort",                          CW_ABORT
  75. END
  76.  
  77.  
  78. //////////////////////////////////////////////////////////////////////////////
  79. //
  80. // Icon
  81. //
  82.  
  83. CW_MAIN                 ICON    DISCARDABLE     "CW_MAIN.ICO"
  84.  
  85.  
  86. //////////////////////////////////////////////////////////////////////////////
  87. //
  88. // Dialog
  89. //
  90.  
  91. QuoteDlg DIALOG DISCARDABLE  20, 20, 161, 92
  92. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  93. CAPTION "Ftp4w: Quote"
  94. FONT 8, "MS Sans Serif"
  95. BEGIN
  96.     LTEXT           "Enter your command",IDC_STATIC,10,15,135,15
  97.     EDITTEXT        IDC_QUOTECMD,10,35,140,15,ES_AUTOHSCROLL
  98.     DEFPUSHBUTTON   "OK",IDOK,10,65,50,14
  99.     PUSHBUTTON      "Cancel",IDCANCEL,100,65,50,14
  100. END
  101.  
  102.  
  103. #ifndef APSTUDIO_INVOKED
  104. ////////////////////////////////////////////////////////////////////////////////
  105. //
  106. // Generated from the TEXTINCLUDE 3 resource.
  107. //
  108.  
  109.  
  110. /////////////////////////////////////////////////////////////////////////////////////
  111. #endif    // not APSTUDIO_INVOKED
  112.  
  113.